home *** CD-ROM | disk | FTP | other *** search
/ Archive Magazine CD 1995 / Archive Magazine CD 1995.iso / discs / prog_disc / volume_3 / issue04 / c / c_4_3 < prev    next >
Encoding:
Text File  |  1989-12-11  |  237 b   |  9 lines

  1. #include <stdio.h>
  2.  
  3. int main( int argc, char *argv[] )
  4.     {
  5.     printf( "This goes to the standard output\n" );
  6.     fprintf( stderr, "This goes to the standard error\n" );
  7.     fprintf( stdout, "This is standard output again\n" );
  8.     }
  9.